CRMEntryBlock object
The CRMEntryBlock object corresponds to a single field that's displayed or edited onscreen. You can create many entry types, such as text blocks, multi-select boxes, and currency input boxes.
The CRMEntryBlock object is a child of the CRM object. You usually add entries to an entrygroup or a container block but CRMEntryBlock doesn't inherit the properties or methods of a block to which it's added.
You can use JavaScript scripts on these blocks to perform tasks when they load, change, and are validated.
The CRMEntryBlock object properties are similar to the field properties available when adding entries to a screen in the <My Profile> | Administration | Customization area of Sage CRM.
Preceding code:
EntryGroup = CRM.GetBlock("GroupBlockName");
EntryGroup.AddEntry("entryname");
Entry = EntryGroup.GetEntry("entryname");